playwright-demo/tsconfig.json

16 lines
697 B
JSON
Raw Normal View History

2021-05-27 15:25:25 +08:00
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
2024-08-02 09:50:12 +08:00
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true, /* Enable all strict type-checking options. */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
2021-05-27 15:25:25 +08:00
/* Advanced Options */
2024-08-02 09:50:12 +08:00
"skipLibCheck": true, /* Skip type checking of declaration files. */
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
},
"include": [
"tests/**/*.ts",
]
}