35 lines
776 B
JSON
Raw Normal View History

{
2024-02-14 16:28:36 -05:00
"extends": "./node_modules/@microsoft/rush-stack-compiler-4.5/includes/tsconfig-web.json",
"compilerOptions": {
2024-02-14 16:28:36 -05:00
"skipLibCheck": true,
"inlineSources": false,
"strictNullChecks": false,
2024-02-16 15:25:12 -05:00
"noUnusedLocals": true,
"target": "es5",
"forceConsistentCasingInFileNames": true,
2024-02-14 16:28:36 -05:00
"module": "esnext",
"moduleResolution": "node",
"jsx": "react",
"declaration": true,
"sourceMap": true,
2024-02-14 16:28:36 -05:00
"noImplicitAny": false,
"experimentalDecorators": true,
"types": [
2024-02-14 16:28:36 -05:00
"webpack-env",
"microsoft-ajax",
"sharepoint"
],
"lib": [
2024-02-15 16:43:34 -05:00
"es2015",
"dom"
2024-02-14 16:28:36 -05:00
],
"outDir": "lib",
"typeRoots": [
"./node_modules/@types",
"./node_modules/@microsoft"
]
2024-02-14 16:28:36 -05:00
},
"exclude": [
2024-02-15 10:15:07 -05:00
"node_modules"
2024-02-14 16:28:36 -05:00
],
}