зеркало из https://github.com/microsoft/keyborg.git
23 строки
605 B
JSON
23 строки
605 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"noResolve": false,
|
|
"jsx": "preserve",
|
|
"module": "ES2015",
|
|
"moduleResolution": "node",
|
|
"target": "ES2019",
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"skipLibCheck": true,
|
|
"strictNullChecks": true,
|
|
"strictPropertyInitialization": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "./dist/",
|
|
"lib": ["DOM", "ESNext"]
|
|
},
|
|
"include": ["./src/**/*", "./tests/**/*", "./playwright.config.ts"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|