-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
executable file
·31 lines (26 loc) · 1002 Bytes
/
tsconfig.base.json
File metadata and controls
executable file
·31 lines (26 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* Project Utils (Build tools and Utility libraries/classes)
Copyright © 2025 - Pimous Dev. (https://www.pimous.dev/)
These programs are free software: you can redistribute them and/or modify them
under the terms of the GNU Lesser General Public License version 3 as published
by the Free Software Foundation.
The latters are distributed in the hope that they will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
details.
You should have received a copy of the GNU General Public License and the GNU
Lesser General Public License along with the programs. If not,
see https://www.gnu.org/licenses/.
*/
{
"compilerOptions": {
"target": "ESNext",
"composite": true,
"strict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noImplicitAny": true,
"noImplicitThis": true,
"module": "NodeNext",
"moduleResolution": "nodenext"
}
}