diaREact/tsconfig.json

21 lines
645 B
JSON
Raw Normal View History

2022-02-11 17:26:15 +01:00
{
"compilerOptions": {
"target": "es2015",
"module": "es2020",
"moduleResolution": "node",
"baseUrl": "./",
"strict": true, // Enable strict type-checking options
"skipLibCheck": true, // Skip type checking of declaration files
"noImplicitAny": false,
// Bypass raising errors on `any` type
"jsx": "react",
"lib": [
"es2019",
"dom",
"dom.iterable" // for FormData.entries
2022-04-14 10:49:56 +02:00
],
"allowSyntheticDefaultImports": true
2022-02-11 17:26:15 +01:00
},
"include": ["resources/js/**/*"] // Frontend paths pattern
}