1
0
mirror of synced 2025-12-25 11:03:37 -05:00
Files
docs/tsconfig.json
Mike Surowiec 7310fc998a Refactor display-platform-specific-content (#22665)
* refactor display-platform-specific-content

* update PlatformPicker tests and cleanup
2021-11-12 14:40:35 +00:00

34 lines
641 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitThis": false,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"baseUrl": ".",
"noEmit": true,
"allowSyntheticDefaultImports": true,
"incremental": true
},
"exclude": [
"node_modules"
],
"include": [
"*.d.ts",
"**/*.ts",
"**/*.tsx"
]
}