2022-03-15 09:17:43 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext" /* Specify ECMAScript target version */,
|
2022-04-06 05:59:13 -04:00
|
|
|
"module": "es2020" /* Specify module code generation */,
|
2022-03-15 09:17:43 -04:00
|
|
|
"allowJs": true /* Allow JavaScript files to be compiled. */,
|
|
|
|
// "checkJs": true /* Report errors in .js files. */,
|
|
|
|
"jsx": "preserve" /* Specify JSX code generation */,
|
|
|
|
"noEmit": true /* Do not emit outputs. */,
|
|
|
|
// "strict": true /* Enable all strict type-checking options. */,
|
|
|
|
"moduleResolution": "node" /* Specify module resolution strategy */,
|
|
|
|
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */,
|
|
|
|
"skipLibCheck": true /* Skip type checking of declaration files. */,
|
2022-04-06 06:14:43 -04:00
|
|
|
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
|
|
|
|
"types": ["cypress", "@testing-library/cypress"]
|
2022-03-15 09:17:43 -04:00
|
|
|
},
|
2022-03-28 05:49:02 -04:00
|
|
|
"include": [
|
|
|
|
"frontend/js/**/*.*",
|
|
|
|
"modules/**/frontend/js/**/*.*",
|
|
|
|
"test/frontend/**/*.*",
|
2022-03-28 06:27:18 -04:00
|
|
|
"modules/**/test/frontend/**/*.*",
|
2022-05-16 05:38:20 -04:00
|
|
|
"frontend/stories/**/*.*",
|
|
|
|
"modules/**/stories/**/*.*",
|
2022-04-06 06:14:43 -04:00
|
|
|
"cypress",
|
2022-03-28 06:27:18 -04:00
|
|
|
"types"
|
2022-03-28 05:49:02 -04:00
|
|
|
]
|
2022-03-15 09:17:43 -04:00
|
|
|
}
|